home *** CD-ROM | disk | FTP | other *** search
-
- In article <mgaro.52.002F82AB@kuhub.cc.ukans.edu>, <mgaro@kuhub.cc.ukans.edu>
- writes:
- > ....
- >
- > I am using the Netmanage stack (Chameleon). I was using version 4.0, then
- > upgraded to 4.00.4. I previously used WSARCHIE 0.2 with no problem. I think
- > it worked with the new version of the Netmanage stack. Anyway, I reinstalled
- > the old version, and tried WSARCHIE versions 0.2 and 0.5 with both. Same
- > error every time. I don't know what has changed, because it used to work
- > fine. I can try the Trumpet winsock and see if that works if you like,
- David.
- > Thanks for a great program (if only I can get it to work again!)
- >
- > Michael.
-
- Same for me, WSArchie alpha 0.1 runs with fine Trumpet WinSock 1.0 beta r6, but
- on NetManage's Chameleon 4.0 r4 it always returns with a message saying s.th.
- like "NO DATA".
-
- Stephen Heilbronner
- <heilbron@informatik.tu-muenchen.de>
- From news@bigblue.oit.unc.edu Sat Apr 19 03:28:52 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA11656; Wed, 20 Apr 1994 03:14:02 -0400
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA16669; Wed, 20 Apr 1994 01:45:57 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: 19 Apr 1994 10:28:52 -0700
- From: lelina@kaiwan.com (Rico Lelina)
- Message-Id: <GF-ijKFrDfPN061yn@kaiwan.com>
- Organization: KAIWAN
- Sender: ses
- References: <2ov9at$mhv@nntp2.Stanford.EDU>
- Reply-To: lelina@kaiwan.com
- Subject: Re: How to pass connect() a sockaddr_in??
-
- In article <2ov9at$mhv@nntp2.Stanford.EDU>, Richard Swent wrote:
- > Here is some code that used to work just fine for me. Now I am compiling
- > it as a C++ file instead of C, and the compiler is much fussier about
- > data types. I get the message: "connect: cannot convert parameter 2 from
- > struct ::sockaddr_in __far * to const struct ::sockaddr __far *" This is
- > because connect is defined in winsock.h with the second parameter as a
- > sockaddr FAR *, not sockaddr_in FAR *. How do I fill a sockaddr with the
- > sockaddr_in information, or how can I get the compiler to accept the
- > call as it is (since I know it used to work)? Editing winsock.h to
- > change the definition of parameter 2 might work, but I consider this
- > cheating.
- >
- > Thanks,
- > Rich
- > rlswent@leland.stanford.edu
- >
- >
- > struct sockaddr_in fsock;
- > struct hostent *hent;
- >
- > if ( (s = socket(AF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET )
- > return(FALSE);
- > fsock.sin_family=AF_INET;
- > fsock.sin_addr.s_addr = *(long *) hent->h_addr;
- > fsock.sin_port = htons(Myportz);
- >
- > ret=connect( s, &fsock, sizeof(struct sockaddr_in) );
-
- // Try the following (just casting to the right type):
- ret = connect(s, (LPSOCKADDR)&fsock, sizeof(struct sockaddr_in));
-
- -------------------------------
- Rico Lelina (lelina@kaiwan.com)
- "Blueberry bagels on Monday."
- From news@bigblue.oit.unc.edu Wed Apr 20 03:14:03 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA11667; Wed, 20 Apr 1994 03:14:03 -0400
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA13476; Wed, 20 Apr 1994 02:13:01 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Wed, 20 Apr 1994 07:45:49 UNDEFINED
- From: h9304891@iwaki.anu.edu.au (Nathan Hand)
- Message-Id: <h9304891.51.000EEC13@iwaki.anu.edu.au>
- Organization: none
- Sender: ses
- References: <geofmwp.766676124@aau>, <h9304891.46.02F90330@iwaki.anu.edu.au>, <2ov764$97j@clarknet.clark.net>
- Subject: Re: trumpet winsock and Wfwg 3.11
-
- In article <2ov764$97j@clarknet.clark.net> bitstream@clark.net (bitstream) writes:
- >>Basically youll need to install dis_pkt9.dos into your microsoft network
- >>ini files and then preload them before starting windows. The following
- >>included textfile should solve all your problems
- >>
- > Now comes the tough question. Can it do SLIP? I run a SLIP connection
- with>Trumpet Winsock 1B #6 and I like it alot. Although I would really like
- to have>something more integrated into Windows for Worgroups if at all
- possible. >If it can do SLIP somehow, I would love to know. Thanks.
-
- Do you mean you want Trumpet Winsock to do SLIP or for WFWG to do slip?
-
- If you are talking about Trumpet Winsock then easy... just ignore all the
- networking stuff i presented and run Trumpet Winsock directly from WFWG3.11.
- Trumpet Winsock running over slip doesnt need any networking crap. Otherwise
- I cant help :(
- From news@bigblue.oit.unc.edu Sat Apr 19 09:49:04 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA14198; Wed, 20 Apr 1994 03:44:01 -0400
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA17949; Wed, 20 Apr 1994 02:19:43 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: 19 Apr 1994 13:49:04 -0400
- From: rshipley@access.digex.net (Rich Shipley)
- Message-Id: <rshipley.766777639@access3>
- Organization: Express Access Online Communications, Greenbelt, MD USA
- Sender: ses
- References: <leonn.9.00087319@tenore.digex.net>, <2ov3g7$4bk@news1.digex.net>, <2ova5o$86m@news1.digex.net>
- Subject: Re: SMTP Mail Client - SLIP
-
- Frontier Technologies Super TCP for Windows comes with a SMTP server that
- runs in the background. Its problem is that they don't have a way to
- connect via SLIP other than at Windows startup.
-
- Rich
- From news@bigblue.oit.unc.edu Mon Apr 18 16:39:33 1994
- Received: from bigblue.oit.unc.edu by SunSITE.Unc.EDU (5.65c+IDA/FvK-1.07) with SMTP
- id AA14208; Wed, 20 Apr 1994 03:44:04 -0400
- Received: by bigblue.oit.unc.edu (AIX 3.2/UCB 5.64/4.03)
- id AA13420; Wed, 20 Apr 1994 02:40:42 -0500
- Received: from GATEWAY by bigblue with netnews
- for winsock@sunsite.unc.edu (winsock@sunsite.unc.edu)
- To: winsock@sunsite.unc.edu
- Date: Mon, 18 Apr 1994 16:39:33 GMT
- From: hbae@cwis.unomaha.edu (Hansang Bae)
- Message-Id: <hbae.766687173@cwis>
- Organization: University of Nebraska at Omaha
- Sender: ses
- References: <hbae.766284510@cwis>, <georg.21.004BE091@geo.phys.ethz.ch>
- Subject: Re: WFWG, ODI, MS TCP/IP AND ODIPKT!
-
-
- I WROTE in an earlier posting:
- >>Ok, I have WFWG running fine with MS tcp/ip package. I also use thier
- >>sockets and dnr program. The only problem that I'm running into is that
- >>I cannot use ODIPKT. I still have to use Clarkson's (Rutgers) DOS
- >>telnet. Can't do it w/o ODIPKT.
- >>Actually, I can use odipkt fine, but if I load up ODINSUP (for ndis over
- >>odi), it crashes on me. Has anyone gotten ODIPKT to coexit with
- >>ODINSUP?
-
-
- To Which: georg@geo.phys.ethz.ch (Georg Schwarz) writes:
- >Just install your MTCPB1 with the NDIS2/NDIS3 drivers (no ODI stuff in WFW)
- >and then add your ODI drivers manually in the AUTOEXEC. The winsock
- >applications will use the NDIS drivers and your DOS program will use the
- >TSR packet driver.
-
- Georg,
-
- Thank you for the post. I thought I was doing that. In my Network setup dialog,
- I have Microsoft NetBEUI, IPX/SPX Compatible transport w/ NetBIOS, and Microsoft
- TCP/IP. Also, I have selected REAL MODE NDIS driver. To save some time and
- (hoping that other can help, I've enclosed the pertinent files)
-
-
- ********* AUTOEXEC.BAT *********
-
- @ECHO OFF
- set winpmt=Windows is ACTIVE! $_$p$g
- SET PATH=C:\BAT;C:\WINDOWS;C:\DOS;c:\;C:\TELNET;
- cd \nwclient
- net init
- lh lsl
- lh e21odi
- lh odinsup.com
-
- REM Ideally, I'd like to load odipkt here so that my Clarkson Telnet
- REM package will work when I'm in dos mode.
-
- c:\windows\net start NETBIND
- lh ipxodi
- lh vlm ps=unocdc
- C:\WINDOWS\umb
- C:\WINDOWS\tcptsr
- C:\WINDOWS\tinyrfc
- C:\WINDOWS\nmtsr.exe
- C:\WINDOWS\emsbfr.exe
- C:\WINDOWS\dnr.exe
- C:\WINDOWS\sockets.exe
-
-
- ************ PROTOCOL.INI ***********
-
- [network drivers]
- devdir=C:\WINDOWS
- transport=*netbeui,ndishlp.sys,tcpdrv.dos,nemm.dos,dis_pkt9.dos
- LoadRMDrivers=Yes
-
- [NetWare]
- NWShareHandles=FALSE
- RestoreDrives=TRUE
-
- [NWNBLINK]
- LANABASE=1
-
- [mmwd600.drv]
- WidthXHeight=800x600
- FontSize=small
-
- [network.setup]
- version=0x3110
- netcard=ms$cbl21,1,MS$CBL21,1
- transport=ms$nwlinknb,NWLINK
- transport=ms$netbeui,NETBEUI
- transport=ms$ndishlp,MS$NDISHLP
- transport=tcpip,TCPIP
- lana0=ms$cbl21,1,ms$netbeui
- lana1=ms$cbl21,1,ms$nwlinknb
- lana2=ms$cbl21,1,ms$ndishlp
- lana3=ms$cbl21,1,tcpip
-
- [MS$CBL21]
- DriverName=E21ND$
- INTERRUPT=10
- IOADDRESS=0x380
- SHAREDRAM=0xC800
- MEDIA=PRI
-
- [NWLINK]
- BINDINGS=E21ODI
-
- [NETBEUI]
- BINDINGS=E21ODI
- LANABASE=0
- SESSIONS=10
- NCBS=12
- DriverName=netbeui$
-
- ;[pktdrv]
- ;DriverName=PKTDRV$
- ;BINDINGS=E21ODI
- ;INTVEC=0X61
-
- [protman]
- DriverName=PROTMAN$
- PRIORITY=MS$NDISHLP
-
-
- [MS$NDISHLP]
- DriverName=ndishlp$
- BINDINGS=E21ODI
-
- [TCPIP]
- DefaultGateway0=137 48 2 254
- SubNetMask0=255 255 255 0
- IPAddress0=137 48 2 142
- NBSessions=6
- NetFiles=C:\WINDOWS
- DriverName=TCPIP$
- BINDINGS=E21ODI
- LANABASE=2
-
-
- Thank you to anyone who can assist me!
-
- And thank you again for you post, Georg
-
-
- Hansang Bae --------------------------------------------------------
- | hbae@unocdc.unomaha.edu | Data Communication EAB 110 |
- | hbae@cwis.unomaha.edu | Voice: (402) 554-3769 FAX: (402) 554-3475 |
- ---------------------------------------------------------------------
-
-
-